home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Deutsche Edition 1
/
Deutsche Edition 1.iso
/
amok
/
081-090
/
amok81
/
m2
/
demos
/
txt
/
hello.mod
< prev
next >
Wrap
Text File
|
1993-11-04
|
391b
|
24 lines
IMPLEMENTATION MODULE Hello;
FROM Terminal IMPORT Write, WriteLn, WriteString;
PROCEDURE WriteWithIndent(indent: CARDINAL; what: ARRAY OF CHAR);
VAR
i: CARDINAL;
BEGIN
FOR i:=1 TO indent DO
Write(" ");
END;
WriteString(what);
WriteLn;
END WriteWithIndent;
BEGIN
WriteWithIndent(0,"(Modul Hello startet.)");
CLOSE
WriteWithIndent(0,"(Modul Hello endet.)");
END Hello.